All Autocomplete
Extend Sublime autocompletion to find matches in all open files of the current window
Details
Installs
- Total 1.10M
- Win 668K
- Mac 237K
- Linux 194K
Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 20 | 15 | 18 | 11 | 27 | 22 | 26 | 11 | 21 | 19 | 19 | 16 | 20 | 31 | 24 | 21 | 21 | 19 | 14 | 16 | 13 | 22 | 22 | 12 | 21 | 24 | 18 | 25 | 14 | 11 | 13 | 17 | 20 | 18 | 24 | 35 | 27 | 13 | 9 | 14 | 26 | 17 | 20 | 21 | 9 | 12 |
Mac | 2 | 5 | 6 | 5 | 8 | 2 | 5 | 5 | 7 | 2 | 4 | 7 | 2 | 8 | 5 | 4 | 2 | 0 | 5 | 8 | 5 | 7 | 7 | 1 | 2 | 7 | 7 | 6 | 5 | 1 | 6 | 6 | 5 | 4 | 5 | 3 | 4 | 5 | 7 | 9 | 4 | 6 | 5 | 10 | 4 | 5 |
Linux | 2 | 5 | 4 | 7 | 11 | 6 | 4 | 6 | 4 | 7 | 5 | 6 | 5 | 4 | 11 | 10 | 10 | 9 | 5 | 4 | 2 | 8 | 11 | 8 | 9 | 4 | 9 | 7 | 5 | 6 | 7 | 4 | 5 | 4 | 8 | 2 | 8 | 3 | 5 | 3 | 5 | 9 | 5 | 2 | 4 | 3 |
Readme
- Source
- raw.githubusercontent.com
All Autocomplete Sublime Text
Extends the default autocomplete to find matches in all open files.
By default Sublime only considers words found in the current file.
Install
If you have Package Control installed in Sublime just press ctrl+shift+p (Windows, Linux) or cmd+shift+p (OS X) to open the Command Pallete. Start typing 'install' to select 'Package Control: Install Package', then search for AllAutocomplete and select it. That's it.
You can also install this package manually by entering the Packages directory of Sublime Text 2/3 and issuing on a terminal:
git clone https://github.com/alienhard/SublimeAllAutocomplete
Settings
You can disable the additional autocompletion provided by this package for specific source files and even select syntax within files. In the Sublime menu go to Preferences > Package Settings > All Autocomplete > Settings – User.
Example: the following Setting would disable completions when you're editing CSS or JavaScript code, and would not source any completions from Markdown files:
"exclude_from_completion": [
"css",
"js"
],
"exclude_sources": [
"markdown"
],
"min_word_size": 5, // don't show completions for words with fewer than this many chars
"max_word_size": 40 // don't show completions for words with more than this many chars
The names provided in this list are matched against the so-called “syntax scope” of the currently autocompleted input. For example, in a CSS file, when you start typing a new CSS class name, the syntax scope is “source.css meta.selector.css”. The names you provide in the config above are partially matched against this scope. This means, you can completely disable All Autocomplete for all CSS code by specifying “css” – or you can disable it only for specific parts, for example, CSS selectors by specifying “selector.css”. Or to disable completion in comments, include “comment” in the list.
Note, if you want to disable it in C source, but not in CSS, add “source.c” in the list (since “c” alone would also match css).
You can find the syntax scope of code at the current cursor position with Control+Shift+P.
LICENSE
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004
Copyright © 2013 Adrian Lienhard adrian.lienhard@gmail.com
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- You just DO WHAT THE FUCK YOU WANT TO.